home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / BOOPSI / GI1 / Examples / smakefile < prev    next >
Encoding:
Makefile  |  1996-03-17  |  334 b   |  17 lines

  1. CFLAGS = nostkchk structureequivalence noicons
  2.  
  3. all: Button_Test Calendar_Test LED_Test Tabs_Test
  4.  
  5. Button_Test: Button_Test.c
  6.     sc link $(CFLAGS) Button_Test.c
  7.  
  8. Calendar_Test: Calendar_Test.c
  9.     sc link $(CFLAGS) Calendar_Test.c
  10.  
  11. LED_Test: LED_Test.c
  12.     sc link $(CFLAGS) LED_Test.c
  13.  
  14. Tabs_Test: Tabs_Test.c
  15.     sc link $(CFLAGS) Tabs_Test.c
  16.  
  17.